home *** CD-ROM | disk | FTP | other *** search
/ MacHack 1997 / MacHack 1997.toast / Hacks / Hacks ’95 / Reminder Manager / Play.h < prev    next >
Text File  |  1995-06-23  |  748b  |  35 lines

  1. /* ===================================
  2.  
  3. File: conversion.h
  4. Function: Header for conversion routines
  5. History: 11/12/89 Original by bc.
  6.  
  7. ================================= */
  8.  
  9. #include <stdio.h>
  10.  
  11. extern  void  Init_Play(void);
  12.  
  13. /* Convert one line of the input file into one line of the output file */
  14. extern void Play1(void);
  15.  
  16. /* Shut up */
  17. extern void Cease_Play(void);
  18.  
  19. /* If a serious error happens (file system, etc) */
  20. /* This one will abort processing, delete output file, 
  21.    and pop up the Lose box. It's assumed that the ParamText is set. */
  22. extern void Explode(void);
  23.  
  24. extern char *Rest(char *s);
  25.  
  26. extern char *FirstEntry(char *s);
  27.  
  28. short ChangeStates(short startstate);
  29.  
  30. Boolean timetodrop(void);
  31.  
  32. void DropBall(void);
  33.  
  34. void Shower(void);
  35.